/* Responsive Notifications */
@media (max-width: 768px) {
    .notifications-panel {
        width: 90%;
        right: 5%;
        left: 5%;
    }
    
    .confirmation-modal {
        padding: 20px;
        margin: 20px;
    }
    
    .confirmation-modal-header h3 {
        font-size: 16px;
    }
    
    .confirmation-modal-content h4 {
        font-size: 18px;
    }
    
    .confirmation-modal-content p {
        font-size: 13px;
    }
}

.login-btn {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    padding: 8px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.login-btn:hover {
    background-color: white;
    color: #540000;
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.9);
}

.user-icon {
    font-size: 16px;
}